home *** CD-ROM | disk | FTP | other *** search
- /*
- * rmtab.h Support for rmtab manipulations.
- *
- */
-
-
- #ifndef RMTAB_H
- #define RMTAB_H
-
- /*
- * Location of rmtab file. /etc/rmtab is the standard on most systems.
- */
- #include <paths.h>
- #ifndef _PATH_RMTAB
- #define _PATH_RMTAB "/etc/rmtab"
- #endif
-
- extern _PRO(void rmtab_add_client, (dirpath, struct svc_req *) );
- extern _PRO(mountlist * rmtab_lst_client, (void) );
- extern _PRO(void rmtab_del_client, (dirpath, struct svc_req *) );
- extern _PRO(void rmtab_mdel_client, (struct svc_req *rqstp) );
-
- #endif /* RMTAB_H */
-
-